home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1995 February: Tool Chest / Dev.CD Feb 95 / Dev.CD Feb 95.toast / New System Software Extensions / ASLM SDK v1.1.2 / ASLM Examples / TestTools / Sources / TestMisc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-21  |  783 b   |  38 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        TestMisc.h
  3.  
  4.     Contains:    Miscellaneous tests
  5.  
  6.     Copyright:    © 1993 by Apple Computer, Inc., all rights reserved.
  7.  
  8. */
  9.  
  10. #ifndef __TESTMISC__
  11. #define __TESTMISC__
  12.  
  13. #ifndef __TESTTOOL__
  14. #include <TestTool.h>
  15. #endif
  16.  
  17. /*******************************************************************************
  18. ** CLASS TTestMisc
  19. ********************************************************************************/
  20.  
  21. #define kTTestMiscID    kTestToolPrefix "TTestMisc,1.1"
  22.  
  23. class TTestMisc : public TTestTool
  24. {
  25.     public:
  26.                             TTestMisc();
  27.         virtual                ~TTestMisc();
  28.         
  29.         virtual void        InitTest(Boolean verbose, Boolean debug,
  30.                                      int argc, char** argv);        
  31.         virtual void        RunTestIteration(Boolean verbose, Boolean debug);
  32.         virtual void        EndTest(Boolean verbose, Boolean debug);
  33.         
  34. };
  35.  
  36. #endif
  37.  
  38.